php forum
php mysql forum
php mysql smarty
 
Page 2 of 2 < 1 2
Topic Options
#318322 - 11/23/09 07:09 PM Re: [7.3+] Custom Tag - Vimeo Video [Re: sirdude]
Ruben Rocha Offline
Member

Registered: 01/19/00
Posts: 172
Loc: Lutz,FL,USA
greasemonky????????????

Top
#318323 - 11/23/09 07:18 PM Re: [7.3+] Custom Tag - Vimeo Video [Re: Ruben Rocha]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 489
Loc: SoCal
Firefox add-on.. it allows me to change the CSS for any site.. in this case, i use it to not allow the code tags to screw up the forum screens...

for a place like ubbdev, this should be a big dealio, since when code is posted, the thread (many times) blows up.. wink
_________________________

Top
#318324 - 11/23/09 07:26 PM Re: [7.3+] Custom Tag - Vimeo Video [Re: sirdude]
Ruben Rocha Offline
Member

Registered: 01/19/00
Posts: 172
Loc: Lutz,FL,USA
Okay I give up. Ding
Where is that addon at. Ding
Can't seem to find it. Ding
And how do you use it. Ding

Top
#318325 - 11/23/09 07:29 PM Re: [7.3+] Custom Tag - Vimeo Video [Re: Ruben Rocha]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 489
Loc: SoCal
https://addons.mozilla.org/en-US/firefox/addon/748

they have a forum on 'how to', but its quite easy (for a geek type)
_________________________

Top
#318326 - 11/23/09 07:37 PM Re: [7.3+] Custom Tag - Vimeo Video [Re: sirdude]
Ruben Rocha Offline
Member

Registered: 01/19/00
Posts: 172
Loc: Lutz,FL,USA
I guess I need to restart to see something to use.

Top
#318327 - 11/24/09 03:04 AM Re: [7.3+] Custom Tag - Vimeo Video [Re: Ruben Rocha]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5305
Loc: Portland, OR, USA
So, propose a css edit, with code, to the "Developers Discussion" forum and I'll nag AA tipsy
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#318328 - 11/24/09 04:07 PM Re: [7.3+] Custom Tag - Vimeo Video [Re: Gizmo]
Ruben Rocha Offline
Member

Registered: 01/19/00
Posts: 172
Loc: Lutz,FL,USA
Greasemonkey with the Pre-Wrap script is now my best buddy.
No more typewriter mode.
It fixed this topic at least
It does run a little slow when it addresses the long text first draw,but at least it is readable. And I don't hear the ding anymore.

Top
#318335 - 12/01/09 05:19 PM Re: [7.3+] Custom Tag - Vimeo Video [Re: Ruben Rocha]
Ruben Rocha Offline
Member

Registered: 01/19/00
Posts: 172
Loc: Lutz,FL,USA
Good job Gizmo. Especially since correcting the export script. For what ever reason it would not work when first posted. We did have some off line discussion on a possible bug on the export, But it works now.

But since vimeo does not have a redirect for the url.
I prefer to use Sirdude's method. Not due to any security issues, but so it accepts www.vimeo.com and vimeo.com and http:// requests as well.
I posted some issues with this code but you really need to read Sirdudes complete post to figure out what is going on with his code. But it does work also.

Top
#318482 - 02/06/10 10:46 PM Re: [7.3+] Custom Tag - Vimeo Video [Re: Ruben Rocha]
lightningrod Offline
User

Registered: 10/17/09
Posts: 41
I still do not understand what the final answer was here.

I re-read this thread and cannot comprehend what the final answer was here

The Import Custom Tag button does not work for me. I get an error

So I was trying to just type it in manually

Also, the Liveleak embed does not work

And my Google Vids embed does not work

Only my youtube embed works

Top
#318484 - 02/07/10 10:28 PM Re: [7.3+] Custom Tag - Vimeo Video [Re: lightningrod]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5305
Loc: Portland, OR, USA
Well, if all of them don't work (including the stock ones with the UBB) I think theres a problem other than the tags... Every site is independent of the others, so if they all don't work it's something other than the tags...

So, go try one of the stock UBB tags and let me know.

Also, how are you importing? Are you coping the code(s) to a text file and importing that? IF so, post all of what is in a text file you're trying to import and I'll try to diagnose what's the problem.
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#318486 - 02/08/10 12:14 AM Re: [7.3+] Custom Tag - Vimeo Video [Re: sirdude]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 489
Loc: SoCal
Originally Posted By: sirdude
well, you prolly have the markup part wrong..

Code:
<object width="425" height="350">
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=\\2&server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1" />
<embed src="http://vimeo.com/moogaloop.swf?clip_id=\\2&server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="425" height="350">
</embed>
</object>


works with
Code:
(.*vimeo.com/)(\d{5,20})


note, the 1st part captures into \\1 and the 2nd part (what you want) captures into 2nd part.. \\2 (which is in the embed code)..

very important to do that and it works fine, lasts a long time.. i have it on 3 forums wink

if your markup is using \\1, it will essentially 'eat up' all the good stuff and never spit out any reasonable markup wink


this works.. i use it .. smile
_________________________

Top
#318487 - 02/08/10 01:12 AM Re: [7.3+] Custom Tag - Vimeo Video [Re: sirdude]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5305
Loc: Portland, OR, USA
Well, the original works, I use it... seems his issues aren't from the tag not working, since he said elsewhere that others aren't working
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
Page 2 of 2 < 1 2



Moderator:  sirdude 
Who's Online
0 registered (), 35 Guests and 4 Spiders online.
Key: Admin, Global Mod, Mod
Shout Box

Ubb - Buy It!
best forum software
Latest Posts
[7.2.1] - Naked shoutbox
by MithofOT
08/31/10 01:58 PM
[7.5.5] getting $_COOKIE to work
by gtho4
08/29/10 12:28 AM
Jelsoft Bought
by AllenAyres
08/20/10 04:44 PM
UBBDev Now Running Threads 7.5.6
by AllenAyres
08/18/10 07:59 PM
How do I add another field to the profile page?
by Gizmo
08/05/10 09:24 AM
UBB developer needed.
by AllenAyres
08/03/10 02:57 PM
New Mods
How do I add another field to the profile page?
by Vee
08/05/10 06:02 AM
[7.2.1] - Naked shoutbox
by sirdude
08/17/07 10:36 PM
Newest Members
stevebrummie, Neronrg, Vee, dessy, Manish
13533 Registered Users
Top Posters
AllenAyres 25565
JoshPet 11330
Rick 8373
LK 7396
Lord Dexter 6503
Greg Hard 5533
Charles Capps 5438
(Views)Popular Topics
Known public proxy servers 1224347
Finished-[6.5.2] Games Arcade Deluxe v1.9 375009
Integrated Index Page (IIP) 5.3.1 345193
Integrated Index Page (IIP) 5.1.1 322504
TLD Bv2.1 Released - Threads Links Directory 301614
[6.0x] Who's Online 4.0.0 [Finished] 267207
Finished-[6.5.1] Integrated Index Page (IIP) 6.5 244632
[6.3.x] [beta] Hit Hack 2.0 197599
[7.x] Gizmo's Embedding BBCode (Pre UBB.T7.3) 173774
FlashChat & UBB.threads 169520
Forum Stats
13533 Members
59 Forums
37128 Topics
290448 Posts

Max Online: 686 @ 06/28/07 07:04 AM
Featured Member
Registered: 07/03/01
Posts: 811

 

 

 
fusionbb message board php hacks